home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 7 / Night Owl Shareware (NOPV7)(Night Owl Publisher Inc.)(1992).bin / 038a / bash1_12.arj / BASH1-12.TAR / bash-1.12 / builtins / trap.def < prev    next >
Text File  |  1991-10-30  |  5KB  |  188 lines

  1. This file is trap.def, from which is created trap.c.
  2. It implements the builtin "trap" in Bash.
  3.  
  4. Copyright (C) 1987, 1989, 1991 Free Software Foundation, Inc.
  5.  
  6. This file is part of GNU Bash, the Bourne Again SHell.
  7.  
  8. Bash is free software; you can redistribute it and/or modify it under
  9. the terms of the GNU General Public License as published by the Free
  10. Software Foundation; either version 1, or (at your option) any later
  11. version.
  12.  
  13. Bash is distributed in the hope that it will be useful, but WITHOUT ANY
  14. WARRANTY; without even the implied warranty of MERCHANTABILITY or
  15. FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  16. for more details.
  17.  
  18. You should have received a copy of the GNU General Public License along
  19. with Bash; see the file COPYING.  If not, write to the Free Software
  20. Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  21.  
  22. $PRODUCES trap.c
  23.  
  24. $BUILTIN trap
  25. $FUNCTION trap_builtin
  26. $SHORT_DOC trap [arg] [signal_spec]
  27. The command ARG is to be read and executed when the shell receives
  28. signal(s) SIGNAL_SPEC.  If ARG is absent all specified signals are
  29. reset to their original values.  If ARG is the null string this
  30. signal is ignored by the shell and by the commands it invokes.  If
  31. SIGNAL_SPEC is EXIT (0) the command ARG is executed on exit from
  32. the shell.  The trap command with no arguments prints the list of
  33. commands associated with each signal number.  SIGNAL_SPEC is either
  34. a signal name in <signal.h>, or a signal number.  The syntax `trap -l'
  35. prints a list of signal names and their corresponding numbers.
  36. Note that a signal can be sent to the shell with "kill -signal $$".
  37. $END
  38.  
  39. #include <sys/types.h>
  40. #include <signal.h>
  41. #include "../shell.h"
  42. #include "../trap.h"
  43.  
  44. /* The trap command:
  45.  
  46.    trap <arg> <signal ...>
  47.    trap <signal ...>
  48.    trap -l
  49.    trap [--]
  50.  
  51.    Set things up so that ARG is executed when SIGNAL(s) N is recieved.
  52.    If ARG is the empty string, then ignore the SIGNAL(s).  If there is
  53.    no ARG, then set the trap for SIGNAL(s) to its original value.  Just
  54.    plain "trap" means to print out the list of commands associated with
  55.    each signal number.  Single arg of "-l" means list the signal names. */
  56.  
  57. /* Possible operations to perform on the list of signals.*/
  58. #define SET 0            /* Set this signal to first_arg. */
  59. #define REVERT 1        /* Revert to this signals original value. */
  60. #define IGNORE 2        /* Ignore this signal. */
  61.  
  62. trap_builtin (list)
  63.      WORD_LIST *list;
  64. {
  65.   register int i;
  66.   int list_signal_names = 0;
  67.  
  68.   while (list)
  69.     {
  70.       if (strcmp (list->word->word, "-l") == 0)
  71.     {
  72.       list_signal_names++;
  73.       list = list->next;
  74.     }
  75.       else if (strcmp (list->word->word, "--") == 0)
  76.     {
  77.       list = list->next;
  78.       break;
  79.     }
  80.       else if ((*list->word->word == '-') && (list->word->word[1] != '\0'))
  81.     {
  82.       bad_option (list->word->word);
  83.       return (EXECUTION_FAILURE);
  84.     }
  85.       else
  86.     break;
  87.     }
  88.  
  89.   if (!list && !list_signal_names)
  90.     {
  91.       for (i = 0; i < NSIG; i++)
  92.     if (trap_list[i] != (char *)DEFAULT_SIG)
  93.       printf ("trap -- '%s' %s\n",
  94.           (trap_list[i] == (char *)IGNORE_SIG) ? "" : trap_list[i],
  95.           signal_name (i));
  96.       return (EXECUTION_SUCCESS);
  97.     }
  98.  
  99.   if (list_signal_names)
  100.     {
  101.       int column = 0;
  102.  
  103.       for (i = 0; i < NSIG; i++)
  104.     {
  105.       printf ("%2d) %s", i, signal_name (i));
  106.       if (++column < 4)
  107.         printf ("\t");
  108.       else
  109.         {
  110.           printf ("\n");
  111.           column = 0;
  112.         }
  113.     }
  114.       if (column != 0)
  115.     printf ("\n");
  116.       return (EXECUTION_SUCCESS);
  117.     }
  118.  
  119.   if (list)
  120.     {
  121.       char *first_arg = list->word->word;
  122.       int operation = SET, any_failed = 0;
  123.  
  124.       if (signal_object_p (first_arg))
  125.     operation = REVERT;
  126.       else
  127.     {
  128.       list = list->next;
  129.       if (*first_arg == '\0')
  130.         operation = IGNORE;
  131.       else if (strcmp (first_arg, "-") == 0)
  132.         operation = REVERT;
  133.     }
  134.  
  135.       while (list)
  136.     {
  137.       extern int interactive;
  138.       int sig;
  139.  
  140.       sig = decode_signal (list->word->word);
  141.  
  142.       if (sig == NO_SIG)
  143.         {
  144.           builtin_error ("%s: not a signal specification",
  145.                  list->word->word);
  146.           any_failed++;
  147.         }
  148.       else
  149.         {
  150.           switch (operation)
  151.         {
  152.           case SET:
  153.             set_signal (sig, first_arg);
  154.             break;
  155.  
  156.           case REVERT:
  157.             restore_default_signal (sig);
  158.  
  159.             /* Always ignore SIGQUIT. */
  160.             if (sig == SIGQUIT)
  161.               signal (SIGQUIT, SIG_IGN);
  162.  
  163.             /* Ignore some other signals if we are interactive. */
  164.             if (interactive)
  165.               {
  166.             if (sig  == SIGTERM)
  167.               signal (SIGTERM, SIG_IGN);
  168.  
  169. #if defined (JOB_CONTROL)
  170.             if (sig == SIGTTIN ||
  171.                 sig == SIGTTOU ||
  172.                 sig == SIGTSTP)
  173.               signal (sig, SIG_IGN);
  174. #endif /* JOB_CONTROL */
  175.               }
  176.             break;
  177.  
  178.           case IGNORE:
  179.             ignore_signal (sig);
  180.             break;
  181.         }
  182.         }
  183.       list = list->next;
  184.     }
  185.       return ((!any_failed) ? EXECUTION_SUCCESS : EXECUTION_FAILURE);
  186.     }
  187. }
  188.